home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / exercise / circlegr.bas < prev    next >
Encoding:
BASIC Source File  |  1998-04-07  |  106 b   |  14 lines

  1. cls
  2. color 66 
  3. For X = 70 to 220 step 30
  4. For Y = 50 to 200 step 40 
  5. fillcircle X,Y,10
  6. next Y
  7. next X
  8.  
  9.  
  10.  
  11.  
  12.  
  13.